home *** CD-ROM | disk | FTP | other *** search
- on BeginMyConfig X,Y,W,H
- global myConfig
- if objectP(myConfig) then
- forget myConfig
- end if
- set horzOrigin = the stageleft + X
- set vertOrigin = the stageTop + Y
- set myWindowRect = rect(horzOrigin,vertOrigin,horzOrigin+W,vertOrigin+H)
- set myConfig = window "CONFIG"
- set the rect of myConfig = myWindowRect
- set the fileName of myConfig = "CONFIG"
- set the titleVisible of myConfig = TRUE
- set the windowType of myConfig = 4
- end
-
- on StopMyConfig
- FinishMyConfig
- end
-
- on FinishMyConfig
- global myConfig
- if objectP(myConfig) then
- forget myConfig
- end if
- end
-